home *** CD-ROM | disk | FTP | other *** search
/ Hot Super Models / Hot Super Models.iso / unix / x11 / xv2r1.tar / xv2r1 / extensions / xv / include / Xv.h < prev    next >
C/C++ Source or Header  |  1991-05-15  |  3KB  |  107 lines

  1. /***********************************************************
  2. Copyright 1991 by Digital Equipment Corporation, Maynard, Massachusetts,
  3. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Digital or MIT not be
  12. used in advertising or publicity pertaining to distribution of the
  13. software without specific, written prior permission.  
  14.  
  15. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  20. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21. SOFTWARE.
  22.  
  23. ******************************************************************/
  24. #ifndef XV_H
  25. #define XV_H
  26. /*
  27. ** File: 
  28. **
  29. **   Xv.h --- Xv shared library and server header file
  30. **
  31. ** Author: 
  32. **
  33. **   David Carver (Digital Workstation Engineering/Project Athena)
  34. **
  35. ** Revisions:
  36. **
  37. **   05.15.91 Carver
  38. **     - version 2.0 upgrade
  39. **
  40. **   01.24.91 Carver
  41. **     - version 1.4 upgrade
  42. **
  43. */
  44.  
  45. #include <X11/X.h>
  46.  
  47. #define XvName "XVideo"
  48. #define XvVersion 2
  49. #define XvRevision 1
  50.  
  51. /* Symbols */
  52.  
  53. typedef XID XvPortID;
  54. typedef XID XvEncodingID;
  55.  
  56. #define XvNone 0
  57.  
  58. #define XvInput          0
  59. #define XvOutput         1
  60.  
  61. #define XvInputMask      (1L<<XvInput)
  62. #define XvOutputMask     (1L<<XvOutput)
  63.  
  64. /* Events */
  65.  
  66. #define XvVideoNotify 0
  67. #define XvPortNotify 1
  68. #define XvNumEvents 2
  69.  
  70. /* Video Notify Reasons */
  71.  
  72. #define XvStarted 0
  73. #define XvStopped 1
  74. #define XvBusy 2
  75. #define XvPreempted 3
  76. #define XvHardError 4
  77. #define XvLastReason 4
  78.  
  79. #define XvNumReasons (XvLastReason + 1)
  80.  
  81. #define XvStartedMask     (1L<<XvStarted)
  82. #define XvStoppedMask     (1L<<XvStopped)
  83. #define XvBusyMask        (1L<<XvBusy)
  84. #define XvPreemptedMask   (1L<<XvPreempted)
  85. #define XvHardErrorMask   (1L<<XvHardError)
  86.  
  87. #define XvAnyReasonMask   ((1L<<XvNumReasons) - 1)
  88. #define XvNoReasonMask    0
  89.  
  90. /* Errors */
  91.  
  92. #define XvBadPort 0
  93. #define XvBadEncoding 1
  94. #define XvBadControl 2
  95. #define XvNumErrors 3
  96.  
  97. /* Status */
  98.  
  99. #define XvBadExtension 1
  100. #define XvAlreadyGrabbed 2
  101. #define XvInvalidTime 3
  102. #define XvBadReply 4
  103. #define XvBadAlloc 5
  104.  
  105. #endif XV_H
  106.  
  107.